From: Jo-Philipp Wich Date: Sat, 8 Feb 2020 10:24:51 +0000 (+0100) Subject: luci-app-upnp: escape map title X-Git-Url: http://git.openwrt.org/%22https:/collectd.org//%22/%22https:/collectd.org/%22?a=commitdiff_plain;h=50720d36a362c53352fecd3186f2b08c51f26c7b;p=project%2Fluci.git luci-app-upnp: escape map title Fixes: #3597 Signed-off-by: Jo-Philipp Wich --- diff --git a/applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js b/applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js index b85fd6d9df..cfd1e3508a 100644 --- a/applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js +++ b/applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js @@ -69,7 +69,7 @@ return L.view.extend({ var m, s, o; - m = new form.Map('upnpd', _('Universal Plug & Play'), + m = new form.Map('upnpd', [_('Universal Plug & Play')], _('UPnP allows clients in the local network to automatically configure the router.')); s = m.section(form.GridSection, '_active_rules');